* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

@font-face {
    font-family: Avenir roman;
    font-weight: normal;
    src: url(../../../font/Avenir-Roman.ttf);
}

body {
    font-family: Avenir roman;
}

p {
    margin-bottom: 0 !important;
}




.centrar-contenido {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.centrar-formulario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
}

.seccion-cotizar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 251, 251);
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.25));
    padding-bottom: 20px;
}

.descripcion-cotizar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 80vw;

}

.cotiza-tu-stand {
    text-align: center;
    color: #00537D;
    font-size: 80px;
    line-height: 60px;
    padding: 20px 10px 0;
}

.cotiza-tu-stand span {
    color: #00537D;
    font-size: 50px;
    font-weight: 800;
}

.cotiza-tu-espacio {
    text-align: center;
    color: #00537D;
    font-size: 80px;
    line-height: 60px;
    padding: 20px 10px 0;

}

.cotiza-tu-espacio p {
    margin-bottom: 0;
}

.cotiza-tu-espacio span {
    color: #00537D;
    font-size: 20px;
    font-weight: 800;
}

.datos-medexp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 10px 20px;
    color: #00537D;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: end;

}

.datos-medexp-descripcion span {
    color: #03A591;
}

.datos-medexp-cantidad {
    color: #0097D5;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    line-height: 30px;
}

.datos-medexp-cantidad span {
    color: #01558C;
    font-size: 20px;
    font-weight: 600;
}

.brochure {
    text-align: center;
    color: #01558C;
    font-size: 16px;
    font-weight: 500;
}

.brochure .texto-brochure p span {
    color: #03A591;
    font-weight: 900;
}

.texto-brochure {
    display: flex;
    text-align: justify;
    margin: 0 20px 0 45px;
}

.div-enlace-brochure {
    display: flex;
    justify-content: start;
    margin: 10px 20px 0 45px;
    color: white;
}


.enlace-brochure {
    width: 135px;
    height: 23px;
    flex-shrink: 0;
    border-radius: 20px;
    background: #03A591;
    color: white;
    text-align: center;
    text-decoration: none;
}

.enlace-brochure:hover {
    text-decoration: none;
    color: white;
}

.input {
    border-radius: 8px;
    border: 2px solid #ACACAC;
    opacity: 0.6;
    background: #ECECEC;
    width: 100%;
    height: 30px;
    margin-bottom: 15px;
    padding-left: 10px;
}


.btn-cotizar,
.btn-cotizar *,
.btn-cotizar :after,
.btn-cotizar :before,
.btn-cotizar:after,
.btn-cotizar:before {
    border: 0 solid;
    box-sizing: border-box;
}

.btn-cotizar {
    -webkit-tap-highlight-color: transparent;
    background-color: #F07F1E;
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
    padding: 0;
    width: 281px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cotizar:disabled {
    cursor: default;
}

.btn-cotizar:-moz-focusring {
    outline: auto;
}

.btn-cotizar [hidden] {
    display: none;
}

.btn-cotizar {
    border-radius: 99rem;
    border-width: 2px;
    overflow: hidden;
    padding: 0.8rem 3rem;
    position: relative;
    color: white;
}

.btn-cotizar span {
    mix-blend-mode: color-dodge;
    color: white;
}

.btn-cotizar:before {
    background: var(--degradado-marino-claro-medex, linear-gradient(90deg, #03547E 0%, #01558C 51%, #0699D6 100%));
    content: "";
    display: block;
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skew(0deg) translateX(-20%);
    transition: transform 0.2s ease;
    width: 120%;
}

.btn-cotizar:hover:before {
    transform: skew(-45deg) translateX(75%);
}

.div-btn-cotizar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-logo img {
    margin: 30px 0 40px;
    max-width: 370px;
}

@media(min-width:450px) {
    .cotiza-tu-espacio span {
        font-size: 30px;
    }
}

@media(min-width:900px) {

    .centrar-formulario {
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .seccion-cotizar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 80%;
    }

}

@media(min-width:992px) {

    .seccion-cotizar {
        padding-bottom: 30px;
    }

    .descripcion-cotizar {
        margin-top: 30px;
    }

    .form-nombre-numero,
    .form-empresa-cargo,
    .form-tipo-empresa {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .datos-medexp-cantidad {
        text-align: start;
    }

    .brochure {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .btn-cotizar {
        width: 100%;
    }
}